body {
    background-color: black;
    text-align: center;
    font-family: Arial, sans-serif;
}
.board {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
}
.cell {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}
.peg {
    width: 40px;
    height: 40px;
    background-color: blue;
    border-radius: 50%;
}
.empty {
    background-color: white;
    border: 2px solid #bbb;
}
h2, title, p{
    color: white;
}
h1{
    color: rgb(0, 0, 255);
}
h3{
    color: red;
}
